home *** CD-ROM | disk | FTP | other *** search
- Path: news.ov.com!news
- From: glenn@ov.com (Fletcher.Glenn@ov.com)
- Newsgroups: comp.lang.c
- Subject: Re: help on libraries
- Date: 29 Jan 1996 17:50:33 GMT
- Organization: OpenVision
- Message-ID: <4ej1d9$rfo@spanky.pls.ov.com>
- References: <4e8cbc$7ep@fg1.plk.af.mil>
- Reply-To: glenn@ov.com
- NNTP-Posting-Host: foghorn.pls.ov.com
-
- In article 7ep@fg1.plk.af.mil, andersom@plk.af.mil (Marshall Anderson) writes:
- > Might anyone know what I need to do to use the cond_init and mutex_init etc
- >funtion calls. I have included <synch.h> and <thread.h> but to no avail.
- >
- >Any solutions?
- >
- >Thanks alot
- >Marshall Anderson
- >andersom@zuni.plk.af.mil
- >
- >
-
- Let's clear up a little confusion. Including a header file does not
- guarantee that the appropriate libraries will be loaded at compile time.
- You as the programmer are responsible for instructing the compiler to
- link in any libraries not included in the default set. In most compilers,
- the default set is only the master C library. Libraries including special
- functions are not normally loaded by default.
-
- Fletcher.Glenn@ov.com
-
-
-